Skip to content

Commit

Permalink
This is VirtualC64 V4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Jul 25, 2021
1 parent a1aa5aa commit 7e8c6f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions Emulator/Files/AnyFile.cpp
Expand Up @@ -39,9 +39,7 @@ AnyFile::strip(isize count)
{
assert(data != nullptr);
assert(count < size);

printf("Stripping %zd bytes from %zd\n", count, size);


isize newSize = size - count;
u8 *newData = new u8[newSize];

Expand All @@ -50,8 +48,6 @@ AnyFile::strip(isize count)

size = newSize;
data = newData;

printf("New size = %zd\n", size);
}

u64
Expand Down
4 changes: 2 additions & 2 deletions Resources/Info.plist
Expand Up @@ -198,9 +198,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.2</string>
<string>4.3</string>
<key>CFBundleVersion</key>
<string>4.2</string>
<string>4.3</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.entertainment</string>
<key>NSAppTransportSecurity</key>
Expand Down
2 changes: 1 addition & 1 deletion config.h
Expand Up @@ -19,7 +19,7 @@
#define V_SUBMINOR 0

// Uncomment these settings in a release build
// #define RELEASEBUILD
#define RELEASEBUILD


//
Expand Down

0 comments on commit 7e8c6f9

Please sign in to comment.