Browse Source

Update to 1.01

merge-requests/2/head
Miloslav Číž 2 years ago
parent
commit
70b6d3dad2
  1. BIN
      bin/Anarch_LQ_linux64_sdl_elf_1-01
  2. BIN
      bin/Anarch_gbmeta_1-01.zip
  3. BIN
      bin/Anarch_linux64_csfml_elf_1-01
  4. BIN
      bin/Anarch_linux64_sdl_elf_1-01
  5. BIN
      bin/Anarch_pokitto_1-01.pop
  6. BIN
      bin/Anarch_pokitto_joyhat_1-01.pop
  7. BIN
      bin/Anarch_pokitto_nonoverclock_1-01.bin
  8. BIN
      bin/Anarch_winshitxp_sdl_1-01.zip
  9. 2
      bin/web/anarch.js
  10. BIN
      bin/web/anarch.wasm
  11. 8
      main_sdl.c
  12. 2
      texts.h

BIN
bin/Anarch_LQ_linux64_sdl_elf_1-01

Binary file not shown.

BIN
bin/Anarch_gbmeta_1-01.zip

Binary file not shown.

BIN
bin/Anarch_linux64_csfml_elf_1-01

Binary file not shown.

BIN
bin/Anarch_linux64_sdl_elf_1-01

Binary file not shown.

BIN
bin/Anarch_pokitto_1-01.pop

Binary file not shown.

BIN
bin/Anarch_pokitto_joyhat_1-01.pop

Binary file not shown.

BIN
bin/Anarch_pokitto_nonoverclock_1-01.bin

Binary file not shown.

BIN
bin/Anarch_winshitxp_sdl_1-01.zip

Binary file not shown.

2
bin/web/anarch.js

File diff suppressed because one or more lines are too long

BIN
bin/web/anarch.wasm

Binary file not shown.

8
main_sdl.c

@ -87,6 +87,8 @@ @@ -87,6 +87,8 @@
#include <signal.h>
#endif
#define SDL_MAIN_HANDLED 1
#include <stdio.h>
#include <unistd.h>
#include <SDL2/SDL.h>
@ -367,7 +369,11 @@ int main(int argc, char *argv[]) @@ -367,7 +369,11 @@ int main(int argc, char *argv[])
{
uint8_t argHelp = 0;
uint8_t argForceWindow = 0;
uint8_t argForceFullscreen = 1;
uint8_t argForceFullscreen = 0;
#ifndef __EMSCRIPTEN__
argForceFullscreen = 1;
#endif
for (uint8_t i = 0; i < SFG_KEY_COUNT; ++i)
webKeyboardState[i] = 0;

2
texts.h

@ -34,7 +34,7 @@ static const char *SFG_menuItemTexts[] = @@ -34,7 +34,7 @@ static const char *SFG_menuItemTexts[] =
#define SFG_TEXT_SAVED "saved"
#define SFG_TEXT_LEVEL_COMPLETE "level done"
#define SFG_VERSION_STRING "1.0d"
#define SFG_VERSION_STRING "1.01"
/**<
Version numbering is following: major.minor for stable releases,
in-development unstable versions have the version of the latest stable +

Loading…
Cancel
Save