diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/game.cpp b/src/game.cpp index 754c637c..5f4aced4 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -90,8 +90,6 @@ void game() { while(state!=EXIT) { status("INPUT"); do_input(); - status("LOGIC"); - do_logic(); if(refresh) { status("GRAPHIC"); do_graphic(); @@ -112,7 +110,7 @@ void do_init() { if(!load_map(map_path))error("Could not find map file"); - sound.StartMOD("Sound/Mods/somemp.xm",-1); + sound.StartMOD(".data/sound/mods/somemp.xm", -1); // Initialize timers tick_time = 0; @@ -286,12 +284,6 @@ void do_input() { } - - -/** Update game logic */ -void do_logic() { -} - /** Calculate packet length */ int get_packet_length(short id) { int len = get_length(id); |