Skip to content

Commit

Permalink
Version update to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltanvb committed Oct 6, 2022
1 parent 71a846e commit e290b1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ hw and joystick support detection from tzx / cdt
doublecheck zx keyboard map for 128
option to disable keyboard input
split sndfile and portaudio compilation switch to allow loading of sound files as tape
gfx:
crash amikor interlaced módban akarok menübe menni, mintha frame dupe-hoz lenne köze
Expand Down Expand Up @@ -42,6 +41,7 @@ EP Mouse support
cheat support
achievement support
led driver for tape loading
split sndfile and portaudio compilation switch to allow loading of more sound files as tape
*/

Expand Down Expand Up @@ -383,7 +383,7 @@ void retro_get_system_info(struct retro_system_info *info)
{
memset(info, 0, sizeof(*info));
info->library_name = "ep128emu";
info->library_version = "v1.0.2";
info->library_version = "v1.1.0";
info->need_fullpath = true;
info->valid_extensions = "img|dsk|tap|dtf|com|trn|128|bas|cas|cdt|tzx|tvcwav|.";
}
Expand Down Expand Up @@ -780,6 +780,9 @@ bool retro_load_game(const struct retro_game_info *info)
{
config->tape.imageFile = info->path;
config->tapeFileChanged = true;
// Todo: add tzx based advanced detection here
/* tape = openTapeFile(fileName.c_str(), 0,
defaultTapeSampleRate, bitsPerSample);*/
}
if (fileContent)
{
Expand Down
2 changes: 1 addition & 1 deletion ep128emu_core_libretro.info
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ license = "GPLv2"
permissions = ""

# Version of the core:
display_version = "v1.0.2"
display_version = "v1.1.0"

# Hardware Information - Information about the hardware the core supports (when applicable)
# Name of the manufacturer who produced the emulated system:
Expand Down

0 comments on commit e290b1c

Please sign in to comment.