ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/MacOSX/EmulatorView.mm
(Generate patch)

Comparing BasiliskII/src/MacOSX/EmulatorView.mm (file contents):
Revision 1.11 by nigel, 2003-04-02T00:37:34Z vs.
Revision 1.16 by gbeauche, 2008-01-01T09:40:32Z

# Line 3 | Line 3
3   *
4   *      $Id$
5   *
6 < *  Basilisk II (C) 1997-2003 Christian Bauer
6 > *  Basilisk II (C) 1997-2008 Christian Bauer
7   *
8   *  This program is free software; you can redistribute it and/or modify
9   *  it under the terms of the GNU General Public License as published by
# Line 232 | Line 232 | static int prevFlags;
232  
233      if ( ! b )
234          {
235 <                ErrorAlert("Could not allocate an NSBitmapImageRep for the TIFF");
235 >                ErrorAlert("Could not allocate an NSBitmapImageRep for the TIFF\nTry setting the emulation to millions of colours?");
236                  return nil;
237          }
238  
# Line 378 | Line 378 | static NSPoint mouse;                  // Previous/curr
378  
379   - (BOOL) processMouseMove: (NSEvent *) event
380   {
381 <        NSPoint location;
381 >        if ( ! drawView )
382 >        {
383 >                D(NSLog(@"Unable to process event - Emulator has not started yet"));
384 >                return NO;
385 >        }
386  
387          if ( fullScreen )
388          {
# Line 386 | Line 390 | static NSPoint mouse;                  // Previous/curr
390                  return YES;
391          }
392  
393 <        location = [self convertPoint: [event locationInWindow] fromView:nil];
393 >        NSPoint location = [self convertPoint: [event locationInWindow] fromView:nil];
394  
395          D(NSLog (@"%s - loc.x=%f, loc.y=%f",
396                                  __PRETTY_FUNCTION__, location.x, location.y));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines