This commit is contained in:
RobertoFresca 2017-12-21 01:05:27 -03:00
commit b20da8def9
3 changed files with 5 additions and 5 deletions

View File

@ -7786,8 +7786,8 @@ User/save disks that can be created from the game itself are not included.
</software>
<!--
This image is missing the IPL data in sector 0. It's possible to run AUTOEXEC.BAT
manually from TownsOS, but it should be considered a bad dump.
The orginal img file is missing the IPL data in sector 0. This one has it injected
from a working image. To recreate the img, fill the first two sectors with 'U'.
-->
<software name="rbisland">
<!--
@ -7803,7 +7803,7 @@ User/save disks that can be created from the game itself are not included.
<info name="release" value="199204xx" />
<part name="cdrom" interface="fmt_cdrom">
<diskarea name="cdrom">
<disk name="rainbow islands extra" sha1="2c480a769d0f0340ab2c26988b5d37404606dc7e" status="baddump" />
<disk name="rainbow islands extra" sha1="5dc2afbffca0ccdeba87d036ddcf5e53ad9df8f2" status="baddump" />
</diskarea>
</part>
</software>

View File

@ -91,7 +91,7 @@ function datfile.open(file, vertag, fixupcb)
local function iter()
local tag1, tag2, data, start, inblock = false
while not data do
local spos, epos, match = buffer:find("\n($[^\n]*)", pos)
local spos, epos, match = buffer:find("\n($[^\n\r]*)", pos)
if not spos then
return nil
end

View File

@ -158,7 +158,7 @@ void menu_select_software::handle()
ui_globals::switch_image = true;
ui_globals::default_image = false;
}
else if (ui_globals::rpanel == RP_INFOS && ui_globals::cur_sw_dats_view < ui_globals::cur_sw_dats_total)
else if (ui_globals::rpanel == RP_INFOS && ui_globals::cur_sw_dats_view < (ui_globals::cur_sw_dats_total - 1))
{
// Infos
ui_globals::cur_sw_dats_view++;