Skip to content

Commit

Permalink
Septerra Core release version 1.04.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
M-HT committed Nov 4, 2021
1 parent 7ecd956 commit 1e0f72e
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 4 deletions.
7 changes: 7 additions & 0 deletions games/Septerra Core/release/linux/Septerra.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,10 @@ Cheat_FPS=disabled
Keys_WSAD=WSAD
Keys_ArrowKeys=ArrowKeys


# CPU settings
# ------------
#
# CPU_SleepMode=standard/reduced/nosleep - CPU sleep mode (to prevent Septerra Core from consuming too much CPU)
CPU_SleepMode=standard

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Septerra Core for Linux (armv7-gnueabihf)
Version 1.04.0.5
Version 1.04.0.6

Original Septerra Core version 1.04 is required for playing.
(version from GOG.com can be used for playing)
Expand All @@ -24,8 +24,15 @@ On debian based distributions these libraries are in following packages: libsdl2

Source code is available on GitHub: https://github.com/M-HT/SR

Using mouse polling rate higher than default 125Hz can result in mouse stuttering.
Setting CPU_SleepMode (in configuration file) to "reduced" can help. If not, then set CPU_SleepMode to "nosleep".


Changes
-------
v1.04.0.6 (2021-11-04)
* add option to reduce cpu sleep, to help with higher mouse poll rates
* optimize recompiled code

v1.04.0.5 (2021-05-21)
first Linux (armv7-gnueabihf) version
8 changes: 7 additions & 1 deletion games/Septerra Core/release/linux/readme-Linux.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Septerra Core for Linux (x86)
Version 1.04.0.5
Version 1.04.0.6

Original Septerra Core version 1.04 is required for playing.
(version from GOG.com can be used for playing)
Expand All @@ -24,9 +24,15 @@ On debian based distributions these libraries are in following packages: libsdl2

Source code is available on GitHub: https://github.com/M-HT/SR

Using mouse polling rate higher than default 125Hz can result in mouse stuttering.
Setting CPU_SleepMode (in configuration file) to "reduced" can help. If not, then set CPU_SleepMode to "nosleep".


Changes
-------
v1.04.0.6 (2021-11-04)
* add option to reduce cpu sleep, to help with higher mouse poll rates

v1.04.0.5 (2021-01-21)
* add scaling option without bilinear filtering
* add options to set command line parameters
Expand Down
7 changes: 7 additions & 0 deletions games/Septerra Core/release/windows/Septerra.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,10 @@ Cheat_FPS=disabled
Keys_WSAD=WSAD
Keys_ArrowKeys=ArrowKeys


# CPU settings
# ------------
#
# CPU_SleepMode=standard/reduced/nosleep - CPU sleep mode (to prevent Septerra Core from consuming too much CPU)
CPU_SleepMode=standard

8 changes: 7 additions & 1 deletion games/Septerra Core/release/windows/readme-Windows.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Septerra Core for Windows (x86)
Version 1.04.0.5
Version 1.04.0.6

Original Septerra Core version 1.04 is required for playing.
(version from GOG.com can be used for playing)
Expand Down Expand Up @@ -30,9 +30,15 @@ intl from gettext (https://www.gnu.org/software/gettext/)

Source code is available on GitHub: https://github.com/M-HT/SR

Using mouse polling rate higher than default 125Hz can result in mouse stuttering.
Setting CPU_SleepMode (in configuration file) to "reduced" can help. If not, then set CPU_SleepMode to "nosleep".


Changes
-------
v1.04.0.6 (2021-11-04)
* add option to reduce cpu sleep, to help with higher mouse poll rates

v1.04.0.5 (2021-01-21)
* add scaling option without bilinear filtering
* add options to set command line parameters
Expand Down
2 changes: 1 addition & 1 deletion llasm/llasm.d
Original file line number Diff line number Diff line change
Expand Up @@ -3364,7 +3364,7 @@ public int main(string[] args)

File fd;
fd.open(fullpath);
values.length = fd.size;
values.length = cast(uint)(fd.size);
if (values.length > 0)
{
fd.rawRead(values);
Expand Down

0 comments on commit 1e0f72e

Please sign in to comment.