Skip to content

Commit 1e1bc61

Browse files
committed
This is vAmiga v2.1b2
1 parent 92a4839 commit 1e1bc61

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Emulator/Denise/DeniseRegs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Denise::pokeBPLCON1(u16 value)
198198
void
199199
Denise::setBPLCON1(u16 oldValue, u16 newValue)
200200
{
201-
trace(BPLREG_DEBUG, "setBPLCON1(%X)\n", newValue);
201+
trace(BPLREG_DEBUG, "setBPLCON1(%x,%x)\n", oldValue, newValue);
202202

203203
bplcon1 = newValue & 0xFF;
204204

Emulator/config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
#define VER_MAJOR 2
1818
#define VER_MINOR 1
1919
#define VER_SUBMINOR 0
20-
#define VER_BETA 1
20+
#define VER_BETA 2
2121

2222
// Snapshot version number
2323
#define SNP_MAJOR 2
2424
#define SNP_MINOR 1
2525
#define SNP_SUBMINOR 0
26-
#define SNP_BETA 1
26+
#define SNP_BETA 2
2727

2828
// Uncomment this setting in a release build
2929
// #define RELEASEBUILD
@@ -127,7 +127,7 @@ static const int MEM_DEBUG = 0; // Memory
127127
static const int DMA_DEBUG = 0; // DMA registers
128128
static const int DDF_DEBUG = 0; // Display data fetch
129129
static const int SEQ_DEBUG = 0; // Bitplane sequencer
130-
static const int NTSC_DEBUG = 1; // NTSC mode
130+
static const int NTSC_DEBUG = 0; // NTSC mode
131131

132132
// Copper
133133
static const int COP_CHECKSUM = 0; // Compute Copper checksums

Resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@
146146
<key>CFBundlePackageType</key>
147147
<string>APPL</string>
148148
<key>CFBundleShortVersionString</key>
149-
<string>2.1b1</string>
149+
<string>2.1b2</string>
150150
<key>CFBundleVersion</key>
151-
<string>220520</string>
151+
<string>220609</string>
152152
<key>LSApplicationCategoryType</key>
153153
<string>public.app-category.entertainment</string>
154154
<key>LSMinimumSystemVersion</key>

vAmiga.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2646,7 +2646,7 @@
26462646
COMBINE_HIDPI_IMAGES = YES;
26472647
DEVELOPMENT_TEAM = 3NG65ZLYW7;
26482648
ENABLE_APP_SANDBOX = NO;
2649-
ENABLE_HARDENED_RUNTIME = NO;
2649+
ENABLE_HARDENED_RUNTIME = YES;
26502650
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
26512651
GCC_PREPROCESSOR_DEFINITIONS = (
26522652
"DEBUG=1",
@@ -2682,7 +2682,7 @@
26822682
COMBINE_HIDPI_IMAGES = YES;
26832683
DEVELOPMENT_TEAM = 3NG65ZLYW7;
26842684
ENABLE_APP_SANDBOX = NO;
2685-
ENABLE_HARDENED_RUNTIME = NO;
2685+
ENABLE_HARDENED_RUNTIME = YES;
26862686
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
26872687
GCC_PREPROCESSOR_DEFINITIONS = "";
26882688
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;

0 commit comments

Comments
 (0)