Skip to content

Commit

Permalink
This is VirtualC64 5.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Jun 9, 2024
1 parent f18136f commit a13d53e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Emulator/FileSystems/FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ void
FileSystem::exportFile(FSDirEntry *entry, const fs::path &path)
{
auto name = path / entry->getFileSystemRepresentation();
debug(FS_DEBUG, "Exporting file to %s\n", name.c_str());
debug(FS_DEBUG, "Exporting file to %s\n", name.string().c_str());

std::ofstream stream(name);
if (!stream.is_open()) throw Error(ERROR_FILE_CANT_CREATE);
Expand Down
8 changes: 4 additions & 4 deletions VirtualC64.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 240608;
CURRENT_PROJECT_VERSION = 240609;
DEAD_CODE_STRIPPING = YES;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 3NG65ZLYW7;
Expand All @@ -2823,7 +2823,7 @@
LIBRARY_SEARCH_PATHS = "$(inherited)";
LLVM_LTO = NO;
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 5.0b2;
MARKETING_VERSION = 5.0b3;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 c++20";
OTHER_LDFLAGS = "-Wl,-rpath,@loader_path/../Frameworks";
Expand All @@ -2847,7 +2847,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 240608;
CURRENT_PROJECT_VERSION = 240609;
DEAD_CODE_STRIPPING = YES;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 3NG65ZLYW7;
Expand All @@ -2869,7 +2869,7 @@
LIBRARY_SEARCH_PATHS = "$(inherited)";
LLVM_LTO = YES_THIN;
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 5.0b2;
MARKETING_VERSION = 5.0b3;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 c++20";
OTHER_LDFLAGS = "-Wl,-rpath,@loader_path/../Frameworks";
Expand Down

0 comments on commit a13d53e

Please sign in to comment.