mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-05 00:38:00 +01:00
add new Derpy run cycle by Yudhaikeledai
This commit is contained in:
parent
5969971fbc
commit
bfc3ee61e7
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,4 +4,3 @@ others
|
|||
SuperDerpy.ini
|
||||
SuperDerpy.bat
|
||||
sync
|
||||
www
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <getopt.h>
|
||||
#include <locale.h>
|
||||
#include "menu.h"
|
||||
#include "loading.h"
|
||||
#include "about.h"
|
||||
|
@ -406,6 +407,8 @@ int main(int argc, char **argv){
|
|||
al_register_event_source(game.event_queue, al_get_timer_event_source(game.timer));
|
||||
al_start_timer(game.timer);
|
||||
|
||||
setlocale(LC_NUMERIC, "C"); //FIXME?
|
||||
|
||||
game.shuttingdown = false;
|
||||
game.menu.loaded = false;
|
||||
game.restart = false;
|
||||
|
|
Loading…
Reference in a new issue