Changeset 762 for trunk/src


Ignore:
Timestamp:
Aug 31, 1999, 9:24:03 PM (26 years ago)
Author:
phaller
Message:

Fix: typos

Location:
trunk/src/winmm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/winmm/os2timer.h

    r759 r762  
    1 /* $Id: os2timer.h,v 1.6 1999-08-31 16:41:48 phaller Exp $ */
     1/* $Id: os2timer.h,v 1.7 1999-08-31 19:24:03 phaller Exp $ */
    22
    33#ifndef __OS2TIMER_H__
     
    2323 ****************************************************************************/
    2424
    25 #define OS2TIMER_RESOLUTION_MINIMUM 33
    26 #define OS2TIMER_RESOLUTION_MAXIMUM 65535
     25#define OS2TIMER_RESOLUTION_MINIMUM 32
     26#define OS2TIMER_RESOLUTION_MAXIMUM 0x7fffffff
    2727
    2828
  • trunk/src/winmm/time.cpp

    r757 r762  
    1 /* $Id: time.cpp,v 1.2 1999-08-31 15:39:21 phaller Exp $ */
     1/* $Id: time.cpp,v 1.3 1999-08-31 19:24:03 phaller Exp $ */
    22
    33/*
     
    172172   else
    173173     if ((wResolution < OS2TIMER_RESOLUTION_MINIMUM) ||
    174          (wResolution > OS2TIMER_RESOLUTION_MINIMUM))
     174         (wResolution > OS2TIMER_RESOLUTION_MAXIMUM))
    175175      return NULL;
    176176
Note: See TracChangeset for help on using the changeset viewer.