Ignore:
Timestamp:
Oct 19, 2011, 11:26:02 AM (14 years ago)
Author:
dmik
Message:

Replace "\" with "/" in include statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/winmm/initwinmm.cpp

    r21358 r21720  
    4646#include "winmmtype.h"
    4747#include "waveoutbase.h"
    48 #include <win\options.h>
     48#include <win/options.h>
    4949#include "initwinmm.h"
    5050#include <custombuild.h>
     
    122122        WaveOut::setDefaultVolume(dwVolume);
    123123
    124         if(fMMPMAvailable == TRUE) 
     124        if(fMMPMAvailable == TRUE)
    125125        {//if audio access wasn't disabled already, check if mmpm2 is installed
    126126            // try to load the MDM library, not MMPM directly!!!
     
    130130                // this system has no MMPM :-(
    131131                fMMPMAvailable = FALSE;
    132             } 
     132            }
    133133            else
    134134            {
     
    140140                {
    141141                    fMMPMAvailable = FALSE;
    142                 } 
     142                }
    143143                else
    144144                {
     
    161161        }
    162162
    163         if(fMMPMAvailable && RegOpenKeyA(HKEY_LOCAL_MACHINE, CUSTOM_BUILD_OPTIONS_KEY, &hKey) == 0) 
     163        if(fMMPMAvailable && RegOpenKeyA(HKEY_LOCAL_MACHINE, CUSTOM_BUILD_OPTIONS_KEY, &hKey) == 0)
    164164        {
    165165            DWORD dwSize, dwType;
     
    184184            fMMPMAvailable = FALSE;
    185185        }
    186         else 
     186        else
    187187        {
    188188            // Test for buggy audio drivers to turn off audio automagically
    189             for(int i=0;i<sizeof(szBuggyAudio)/sizeof(szBuggyAudio[0]);i++) 
     189            for(int i=0;i<sizeof(szBuggyAudio)/sizeof(szBuggyAudio[0]);i++)
    190190            {
    191191                if(!strncmp(szPDDName, szBuggyAudio[i], strlen(szBuggyAudio[i]))) {
Note: See TracChangeset for help on using the changeset viewer.