Originally posted by: H wylie
I have had a great time playing the game.
No problem loading
Originally posted by: hyunkyu
thanks for this great clone...
when.. build executable file
Compiling resources...
Korean.lng - 2 error(s), 0 warning(s)
...
hi...
2 error
(sorry for my poor english...)
C:\WINDOWS\?Tt\tetris\Korean\KoreanStringRes.rc(131) : fatal error RC1015: cannot open include file 'res\ex11.rc2'.
Error executing rc.exe.
Creating browse info file...
BSCMAKE: error BK1506 : cannot open file '.\Release\DllMain.sbr': No such file or directory
Error executing bscmake.exe.
help me...
Originally posted by: 김 승현
NICE !!
ReplyOriginally posted by: Brandon
Do you have any downloadible games for win 98?
ReplyOriginally posted by: claire
i really like everyday games on the p.c but have wanted tetris for ages so was really excited about your free download until i requested it and found it had gone! please send it to me.
Originally posted by: wind
i need help!! I downloaded your Zip file,when i use my vc60 IDE to compile and link the project, i found it is successful. but when i execute it, there are some error!
The error is in 415 line of dib256.cpp:
int CDIBitmap :: GetHeight() const
{
ASSERT( m_pInfo );
return m_pInfo->bmiHeader.biHeight;
}
i am a newer, i need ur help!!!
cqj
Originally posted by: Dinh Phuong
I look tutorial VC++ for write CG Tetris. Please help me
ReplyOriginally posted by: Wa Kan
void CDirectSound::Play(DWORD dwStartPosition, BOOL bLoop)
the syptom is that after a wav sound is played onces, it
simply add stop() before the play as follows:
m_pDsb->Stop();
and it should be fine.
Cheers
First of all, i want to say that this is a great program.
I found this minor bug in
won't play again. After a little dig around i found that
you have to stop() before you can play() again. so only a
simple fix in the above function is needed.
if( DSERR_BUFFERLOST == m_pDsb->Play(0, 0, bLoop ? DSBPLAY_LOOPING : 0) ) {
Wa