Skip to content

Commit

Permalink
This is vAmiga v2.1b2
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Jun 9, 2022
1 parent 92a4839 commit 1e1bc61
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Emulator/Denise/DeniseRegs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ Denise::pokeBPLCON1(u16 value)
void
Denise::setBPLCON1(u16 oldValue, u16 newValue)
{
trace(BPLREG_DEBUG, "setBPLCON1(%X)\n", newValue);
trace(BPLREG_DEBUG, "setBPLCON1(%x,%x)\n", oldValue, newValue);

bplcon1 = newValue & 0xFF;

Expand Down
6 changes: 3 additions & 3 deletions Emulator/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
#define VER_MAJOR 2
#define VER_MINOR 1
#define VER_SUBMINOR 0
#define VER_BETA 1
#define VER_BETA 2

// Snapshot version number
#define SNP_MAJOR 2
#define SNP_MINOR 1
#define SNP_SUBMINOR 0
#define SNP_BETA 1
#define SNP_BETA 2

// Uncomment this setting in a release build
// #define RELEASEBUILD
Expand Down Expand Up @@ -127,7 +127,7 @@ static const int MEM_DEBUG = 0; // Memory
static const int DMA_DEBUG = 0; // DMA registers
static const int DDF_DEBUG = 0; // Display data fetch
static const int SEQ_DEBUG = 0; // Bitplane sequencer
static const int NTSC_DEBUG = 1; // NTSC mode
static const int NTSC_DEBUG = 0; // NTSC mode

// Copper
static const int COP_CHECKSUM = 0; // Compute Copper checksums
Expand Down
4 changes: 2 additions & 2 deletions Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1b1</string>
<string>2.1b2</string>
<key>CFBundleVersion</key>
<string>220520</string>
<string>220609</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.entertainment</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions vAmiga.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2646,7 +2646,7 @@
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 3NG65ZLYW7;
ENABLE_APP_SANDBOX = NO;
ENABLE_HARDENED_RUNTIME = NO;
ENABLE_HARDENED_RUNTIME = YES;
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
Expand Down Expand Up @@ -2682,7 +2682,7 @@
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 3NG65ZLYW7;
ENABLE_APP_SANDBOX = NO;
ENABLE_HARDENED_RUNTIME = NO;
ENABLE_HARDENED_RUNTIME = YES;
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
GCC_PREPROCESSOR_DEFINITIONS = "";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
Expand Down

0 comments on commit 1e1bc61

Please sign in to comment.