mirror of
https://github.com/pevans/erc-c.git
synced 2024-11-24 14:32:08 +00:00
Make sure the object store got built
This commit is contained in:
parent
06d37d24d7
commit
565dd1b34b
@ -9,6 +9,7 @@
|
|||||||
#include "apple2.draw.h"
|
#include "apple2.draw.h"
|
||||||
#include "apple2.mem.h"
|
#include "apple2.mem.h"
|
||||||
#include "mos6502.dis.h"
|
#include "mos6502.dis.h"
|
||||||
|
#include "objstore.h"
|
||||||
#include "option.h"
|
#include "option.h"
|
||||||
#include "vm_segment.h"
|
#include "vm_segment.h"
|
||||||
|
|
||||||
@ -33,6 +34,8 @@ apple2_create(int width, int height)
|
|||||||
apple2 *mach;
|
apple2 *mach;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
objstore_init();
|
||||||
|
|
||||||
mach = malloc(sizeof(apple2));
|
mach = malloc(sizeof(apple2));
|
||||||
if (mach == NULL) {
|
if (mach == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -117,7 +120,8 @@ apple2_create(int width, int height)
|
|||||||
|
|
||||||
// Let's install our bitmap font.
|
// Let's install our bitmap font.
|
||||||
mach->sysfont = vm_bitfont_create(mach->screen,
|
mach->sysfont = vm_bitfont_create(mach->screen,
|
||||||
"apple2-system",
|
objstore_apple2_sysfont(),
|
||||||
|
APPLE2_SYSFONT_SIZE,
|
||||||
7, 8, // 7 pixels wide, 8 pixels tall
|
7, 8, // 7 pixels wide, 8 pixels tall
|
||||||
0x7f); // 7-bit values only
|
0x7f); // 7-bit values only
|
||||||
if (mach->sysfont == NULL) {
|
if (mach->sysfont == NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user