blob: ac2ef54d8a279f04d51561b2d77f76ec26d4fb9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
//============================================================
//
// errorlogview.m - MacOS X Cocoa debug window handling
//
//============================================================
#include "emu.h"
#import "errorlogview.h"
#include "debug/debugvw.h"
@implementation MAMEErrorLogView
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m {
if (!(self = [super initWithFrame:f type:DVT_LOG machine:m wholeLineScroll:NO]))
return nil;
return self;
}
- (void)dealloc {
[super dealloc];
}
@end
|