Module: wine
Branch: master
Commit: 10d13b2186c173ae8989f4b7cdfe2e6d14bca020
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=10d13b2186c173ae8989f4b…
Author: Jan Zerebecki <jan.wine(a)zerebecki.de>
Date: Mon Sep 25 11:54:14 2006 +0200
wined3d: Fix typo in ResourceReleased.
---
dlls/wined3d/device.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c
index 8a218c8..943a616 100644
--- a/dlls/wined3d/device.c
+++ b/dlls/wined3d/device.c
@@ -7927,14 +7927,14 @@ static void WINAPI IWineD3DDeviceImpl_Re
*/
if (This->updateStateBlock != NULL ) { /* ==NULL when device is being destroyed */
if ((IWineD3DResource *)This->updateStateBlock->streamSource[streamNumber] == resource) {
- FIXME("Vertex buffer released whlst bound to a state block stream %d\n", streamNumber);
+ FIXME("Vertex buffer released while bound to a state block, stream %d\n", streamNumber);
This->updateStateBlock->streamSource[streamNumber] = 0;
/* Set changed flag? */
}
}
if (This->stateBlock != NULL ) { /* only happens if there is an error in the application, or on reset/release (because we don't manage internal tracking properly) */
if ((IWineD3DResource *)This->stateBlock->streamSource[streamNumber] == resource) {
- TRACE("Vertex buffer released whlst bound to a state block stream %d\n", streamNumber);
+ TRACE("Vertex buffer released while bound to a state block, stream %d\n", streamNumber);
This->stateBlock->streamSource[streamNumber] = 0;
}
}