Skip to content

Commit cfba39e

Browse files
committed
lv-tool: Increase initial resolution from 320x200 to 640x480
(cherry picked from commit 113d3e0)
1 parent a05e1e8 commit cfba39e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libvisual/tools/lv-tool/lv-tool.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
#define DEFAULT_ACTOR_NONGL "lv_analyzer"
4545
#define DEFAULT_INPUT "debug"
4646
#define DEFAULT_MORPH "slide_left"
47-
#define DEFAULT_WIDTH 320
48-
#define DEFAULT_HEIGHT 200
47+
#define DEFAULT_WIDTH 640
48+
#define DEFAULT_HEIGHT 480
4949
#define DEFAULT_FPS 60
5050
#define DEFAULT_COLOR_DEPTH 0
5151

@@ -270,7 +270,7 @@ namespace {
270270
case 'D': {
271271
if (std::sscanf (optarg, "%ux%u", &width, &height) != 2)
272272
{
273-
std::cerr << "Invalid dimensions: '" << optarg << "'. Use <width>x<height> (e.g. 320x200)\n";
273+
std::cerr << "Invalid dimensions: '" << optarg << "'. Use <width>x<height> (e.g. 640x480)\n";
274274
return -1;
275275
}
276276
break;

0 commit comments

Comments
 (0)