mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 06:41:51 +00:00
spelling fixes
svn-id: r11180
This commit is contained in:
parent
e9581dda6e
commit
b2e9b73c4c
@ -245,7 +245,7 @@ void ConfigManager::removeKey(const String &key, const String &dom) {
|
||||
else if (_globalDomains.contains(dom))
|
||||
_globalDomains[dom].remove(key);
|
||||
else
|
||||
error("Removing key '%s' from non-existant domain '%s'", key.c_str(), dom.c_str());
|
||||
error("Removing key '%s' from non-existent domain '%s'", key.c_str(), dom.c_str());
|
||||
}
|
||||
|
||||
|
||||
|
@ -54,7 +54,7 @@ public:
|
||||
|
||||
/**
|
||||
* Install a new timer callback. It will from now be called every interval microseconds.
|
||||
* The timer may be invoked from a seperate thread. Hence any timer code should be
|
||||
* The timer may be invoked from a separate thread. Hence any timer code should be
|
||||
* written following the same safety guidelines as any other threaded code.
|
||||
*
|
||||
* @note Although the interval is specified in microseconds, the actual timer resolution
|
||||
|
@ -53,7 +53,7 @@ public:
|
||||
* Returns the actual number of samples read, or -1 if
|
||||
* a critical error occured (note: you *must* check if
|
||||
* this value is less than what you requested, this can
|
||||
* happend when the stream is fully used up).
|
||||
* happened when the stream is fully used up).
|
||||
* For stereo stream, buffer will be filled with interleaved
|
||||
* left and right channel samples.
|
||||
*
|
||||
|
@ -991,7 +991,7 @@ void OPLResetChip(FM_OPL *OPL) {
|
||||
OPLWriteReg(OPL, 0x04,0); /* IRQ mask clear */
|
||||
for(i = 0xff; i >= 0x20; i--)
|
||||
OPLWriteReg(OPL,i,0);
|
||||
/* reset OPerator paramater */
|
||||
/* reset OPerator parameter */
|
||||
for(c = 0; c < OPL->max_ch ;c++ ) {
|
||||
OPL_CH *CH = &OPL->P_CH[c];
|
||||
/* OPL->P_CH[c].PAN = OPN_CENTER; */
|
||||
|
Loading…
x
Reference in New Issue
Block a user