From 0b3fd9644124158ffce8bc2c7655550b77084404 Mon Sep 17 00:00:00 2001 From: franck Date: Sun, 26 Nov 2017 14:02:29 +0100 Subject: [PATCH] Bumping version to 3.9 --- Assets/mrboom.libretro | 2 +- Assets/mrboom.rc | 8 ++++---- Makefile | 2 ++ common.cpp | 2 +- common.hpp | 2 +- sdl2.cpp | 4 ++-- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Assets/mrboom.libretro b/Assets/mrboom.libretro index 0730d579..805cf36a 100644 --- a/Assets/mrboom.libretro +++ b/Assets/mrboom.libretro @@ -1,6 +1,6 @@ [Libretro] Type=Game -Version=3.8 +Version=3.9 Name=MrBoom Icon=mrboom Module=mrboom_libretro.so diff --git a/Assets/mrboom.rc b/Assets/mrboom.rc index 3cefd5d4..413d6e61 100755 --- a/Assets/mrboom.rc +++ b/Assets/mrboom.rc @@ -1,7 +1,7 @@ id ICON "./mrboom.ico" 1 VERSIONINFO -FILEVERSION 3,8,0,0 -PRODUCTVERSION 3,8,0,0 +FILEVERSION 3,9,0,0 +PRODUCTVERSION 3,9,0,0 BEGIN BLOCK "StringFileInfo" BEGIN @@ -9,12 +9,12 @@ BEGIN BEGIN VALUE "CompanyName", "Remdy Software" VALUE "FileDescription", "MrBoom" - VALUE "FileVersion", "3.8" + VALUE "FileVersion", "3.9" VALUE "InternalName", "mrboom" VALUE "LegalCopyright", "Remdy Software" VALUE "OriginalFilename", "MrBoom.exe" VALUE "ProductName", "MrBoom" - VALUE "ProductVersion", "3.8" + VALUE "ProductVersion", "3.9" END END BLOCK "VarFileInfo" diff --git a/Makefile b/Makefile index d6a29b86..c6b3cfcc 100644 --- a/Makefile +++ b/Makefile @@ -260,7 +260,9 @@ strip: $(STRIP) $(TARGET_NAME).out install: strip + $(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/$(BINDIR) $(INSTALL) -m 555 $(TARGET_NAME).out $(DESTDIR)$(PREFIX)/$(BINDIR)/$(TARGET_NAME) + $(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/$(MANDIR) $(INSTALL) -m 644 Assets/$(TARGET_NAME).6 $(DESTDIR)$(PREFIX)/$(MANDIR) install-libretro: diff --git a/common.cpp b/common.cpp index f84a08e1..3400b27c 100644 --- a/common.cpp +++ b/common.cpp @@ -477,7 +477,7 @@ void mrboom_sound(void) currentLevel=level(); if (currentLevel==-1) index=0; Mix_VolumeMusic(musics_volume[index]); - log_info("Playing %s volume:%d\n", musics_filenames[index],Mix_VolumeMusic(-1)); + log_debug("Playing %s volume:%d\n", musics_filenames[index],Mix_VolumeMusic(-1)); if ( Mix_PlayMusic( musics[index], -1) == -1 ) { log_error("error playing music %d\n",musics[0]); } diff --git a/common.hpp b/common.hpp index f9d90a24..f983dde8 100644 --- a/common.hpp +++ b/common.hpp @@ -8,7 +8,7 @@ extern "C" { #endif #define GAME_NAME "Mr.Boom" -#define GAME_VERSION "3.8" +#define GAME_VERSION "3.9" #define PATH_MAX_LENGTH 256 #define WIDTH 320 #define HEIGHT 200 diff --git a/sdl2.cpp b/sdl2.cpp index 602d413d..f5912945 100644 --- a/sdl2.cpp +++ b/sdl2.cpp @@ -282,8 +282,8 @@ loop() else { width = ASPECT_RATIO * height; } - log_info("Setting window size to %d, %d, aspect ratio: %f\n", - width, height, (float)width/(float)height); + log_debug("Setting window size to %d, %d, aspect ratio: %f\n", + width, height, (float)width/(float)height); } screen.w = width; screen.h = height;