Skip to content

Commit

Permalink
release 2.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtBagXon committed Sep 11, 2021
1 parent 791a80d commit 0d39b1c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Minimum software requirements: [gcc], [cmake], [autotools], [zlib], [SDL2],

### MacOS X

Use homebrew to install the following packages: cmake, autoconf, sdl2, sdl2_image, sdl2_ttf, libvorbis, libogg.
Use homebrew to install the following packages:

brew install cmake
brew install autoconf
Expand All @@ -53,7 +53,7 @@ For **Raspberry Pi** clone the ``RetroPie`` branch via:

git clone --single-branch --branch RetroPie https://github.com/DirtBagXon/hypseus-singe.git

Further **RetroPie** Instructions can be found [here](src/3rdparty/retropie/RETROPIE.md)
Further **RetroPie** and **Raspberry Pi** requirements can be found [here](src/3rdparty/retropie/RETROPIE.md)

### Compilation with CMake

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.0)

set(PKG_VERSION "v2.6.14")
set(PKG_VERSION "v2.6.15")

set(FILE_OFFSET_BITS "")

Expand Down
2 changes: 1 addition & 1 deletion src/HyperseusManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<version>
<major>2</major>
<minor>6</minor>
<build>14</build>
<build>15</build>
</version>
</manifest>
6 changes: 5 additions & 1 deletion src/game/cliff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,11 @@ bool cliff::set_bank(unsigned char which_bank, unsigned char value)

void cliff::palette_calculate() { tms9128nl_palette_calculate(); }

void cliff::repaint() { tms9128nl_video_repaint(); }
void cliff::repaint()
{
game::resize();
tms9128nl_video_repaint();
}

// post-rom loading adjustment
void cliff::patch_roms()
Expand Down
3 changes: 0 additions & 3 deletions src/io/conout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,13 @@ void printline(const char *s_format, ...)
LOGI << fmt(s_format, args);
va_end(args);

#ifdef LINUX
if (!plog::get()) {
if (!v) {
fprintf(stdout, "[version] Hypseus Singe: %s\n", get_hypseus_version());
v = true;
}
fprintf(stdout, "[console] %s\n", s_format);
}
#endif

}

// flood-safe printline
Expand Down
4 changes: 2 additions & 2 deletions win32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
Latest build is:

hypseus.exe -v
[version] Hypseus Singe: v2.6.14
[version] Hypseus Singe: v2.6.15
[console] Windows 10
[console] SDL(CC): 2.0.14
[console] SDL(LD): 2.0.14
[console] Build: Aug 22 2021 08:30:00
[console] Build: Sep 10 2021 11:45:00


## Install
Expand Down

0 comments on commit 0d39b1c

Please sign in to comment.