X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmain.cpp;h=075ce1e0bb5861e534bfedb722768a3ea18f502a;hb=15b018d9915412a341e2064760fc915fc5bdbade;hp=b06b5c7533b1e463460461bafe613af016acf743;hpb=57a75f13e98f4b5d311c2d3b9d9ff637120c5ee2;p=l2e.git diff --git a/src/main.cpp b/src/main.cpp index b06b5c7..075ce1e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -86,8 +86,8 @@ using std::string; using std::vector; int main(int argc, char **argv) { - const int width = 800; - const int height = 480; + const int width = 512; + const int height = 448; const float walkSpeed = 128.0f; @@ -284,6 +284,9 @@ int main(int argc, char **argv) { graphics::Sprite statusLabels(IMG_Load("test-data/status-labels.png"), 32, 16); menuResources.statusLabels = &statusLabels; + graphics::Frame statusFrame(IMG_Load("test-data/status-frame.png"), 32, 32, 32, 32); + menuResources.statusFrame = &statusFrame; + InitScreen screen(width, height); app::State *state(0);