Skip to content

Commit

Permalink
Bumping version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
frranck committed Nov 26, 2017
1 parent 547fa29 commit 0b3fd96
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Assets/mrboom.libretro
@@ -1,6 +1,6 @@
[Libretro]
Type=Game
Version=3.8
Version=3.9
Name=MrBoom
Icon=mrboom
Module=mrboom_libretro.so
Expand Down
8 changes: 4 additions & 4 deletions Assets/mrboom.rc
@@ -1,20 +1,20 @@
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
BLOCK "080904E4"
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"
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion common.cpp
Expand Up @@ -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]);
}
Expand Down
2 changes: 1 addition & 1 deletion common.hpp
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions sdl2.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 0b3fd96

Please sign in to comment.