e a problem if it does not correctly support DirectX 9.0c
(released in 2004).
You should see what the DirectX diagnostics tool says
(dxdiag.exe - found in WINDIR\system32) and possibly update
the driver. Then cross your fingers and see what happens.
--
Heikki Salo
--
http://mail.python.org/mailman/listinfo/python-list
ce() tests if some basic requirements are met and
fails if they are not.
You can try to use CREATE.SOFTWARE | CREATE.NOCAPCHECK
combination to pass these checks, but most of the advanced
samples probably don't work.
--
Heikki Salo
--
http://mail.python.org/mailman/listinfo/python-list
Heikki Salo wrote:
> Fabian Steiner wrote:
>> What did I do wrong? As I am quite new to C, I probably made many
>> mistakes, so please feel free to correct me.
>
> The following line:
>
> > for (i = 0; i <= seqlen; i++) {
>
> Should be "for (i
Fabian Steiner wrote:
> What did I do wrong? As I am quite new to C, I probably made many
> mistakes, so please feel free to correct me.
The following line:
> for (i = 0; i <= seqlen; i++) {
Should be "for (i = 0; i < seqlen; i++) {". Otherwise the last
assignment will be out of bounds an